home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Technology Seed / ATS July '97.toast / Mac OS 8 / Docs-Interfaces-Libs / Contextual Menus / ContextualMenuPlugins.h < prev   
Encoding:
C/C++ Source or Header  |  1997-03-20  |  999 b   |  54 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        ContextualMenuPlugins.h
  3.  
  4.     Contains:    <contents>
  5.  
  6.     Written by:    Guy Fullerton
  7.  
  8.     Copyright:    <copyright>
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <4>     1/30/97    GBF     Adding some Apple Event keys.
  13.          <3>     1/16/97    GBF     Adding some constants and removing some obsolete stuff.
  14.          <2>    10/15/96    GBF     Need to include Types.h
  15.         <0+>    10/15/96    GBF     moved from assistance tree.
  16. */
  17.  
  18.  
  19. /*
  20.     File:        ContextualMenuPlugins.h
  21.  
  22.     Contains:    <contents>
  23.  
  24.     Written by:    Guy Fullerton
  25.  
  26.     Copyright:    <copyright>
  27.  
  28.     Change History (most recent first):
  29.  
  30.          <2>     7/28/96    GBF     first checked in
  31.          <1>     7/15/96    GBF     first checked in
  32. */
  33.  
  34.  
  35. #pragma once
  36.  
  37. #ifndef __CONTEXTUALMENUPLUGINS__
  38. #define __CONTEXTUALMENUPLUGINS__
  39.  
  40.     // Mac OS Includes
  41. #include <Types.h>
  42.  
  43.  
  44. enum
  45. {
  46.     kExamineContextNoTimeout                =    0,
  47.     
  48.     kContextualMenuPluginFileType            =    'cmpi',
  49.     
  50.     keyContextualMenuCommandID                =    'cmcd',
  51.     keyContextualMenuSubmenu                =    'cmsb'
  52. };
  53.  
  54. #endif